100 chars
authorYehuda Katz + Carl Lerche <engineering@tilde.io>
Thu, 26 Jun 2014 23:51:37 +0000 (16:51 -0700)
committerTim Carey-Smith <tim@spork.in>
Thu, 26 Jun 2014 23:51:37 +0000 (16:51 -0700)
src/cargo/util/toml.rs

index d8d904330ff921cf86a0cd072e0dfa9b119cc502..b3df7c1d8fee5f0871ad03dcb2d9d652c21725f2 100644 (file)
@@ -223,7 +223,8 @@ fn normalize(lib: Option<&[TomlLibTarget]>,
             let path = bin.path.clone().unwrap_or_else(|| default(bin));
 
             for profile in target_profiles(bin).iter() {
-                dst.push(Target::bin_target(bin.name.as_slice(), &Path::new(path.as_slice()), profile));
+                dst.push(Target::bin_target(bin.name.as_slice(),
+                                            &Path::new(path.as_slice()), profile));
             }
         }
     }